/* 通用字体与基础色彩 */


/* Hero Section */
.must-try-section {
    display: flex;
    align-items: stretch;
    justify-content: center;

    gap: 0;
    border-radius: 20px
}

.backgroundbeige {
    background-color: #fde2cf;
}


.must-try-image img {
    width: 100%;
    height: 100%;

    display: block;

}

.hero-img-bg {
    background-image: url("../image/Must-Try-Restaurants/background.jpg");
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    align-items: center;
}

.must-try-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;

    border-radius: 0 20px 20px 0;
    min-width: 320px;
    background: #FDE2CF;
}

.must-try-icon-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.must-try-icon {
    width: 100%;

}

.must-try-info h2 {
    color: #F8A720;
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    margin: 0;
    line-height: 1.1;
}

.must-try-info p {
    color: #642714;
    font-size: 18px;
    margin: 24px 0 32px 0;
    padding: 0;
}

.must-try-photos {
    display: flex;
    gap: 18px;
    margin-top: 32px;
}

.must-try-thumb {
    width: 100px;

    object-fit: cover;

}

/* 餐厅列表区块 */
.restaurant-list-section {
    margin: 60px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.restaurant-card {
    display: flex;

    border-radius: 18px;
    justify-content: center;



}

.restaurant-img {

    display: flex;
    align-items: center;
    justify-content: center;

}

.restaurant-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.restaurant-info {

    padding: 32px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.restaurant-title {
    font-size: 28px;
    color: #F8A720;
    font-family: 'Noto Serif', serif;
    font-weight: bold;
    margin-bottom: 18px;
}

.restaurant-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.restaurant-icon img {
    width: 28px;
    height: 28px;
    margin-top: 2px;
}

.restaurant-text {
    color: #642714;
    font-size: 17px;
    line-height: 1.5;
}

.restaurant-close {
    color: #F8A720;
    font-weight: bold;
    margin-left: 6px;
    font-size: 15px;
}

.restaurant-btn-row {
    margin-top: 18px;
}

.see-more-btn {
    display: inline-block;
    background: #F8A720;
    color: #642714;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 28px;
    border-radius: 7px;
    text-decoration: none;

}

.see-more-btn:hover {
    background: #ffb84d;
    color: #fff;
}

/* 图片展示区块 */
.images4 {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.images4.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 600px) {

    .images4,
    .images4.reverse {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 其它区块样式 */
.must-try-hero-bg {
    position: relative;
    width: 100%;
    min-height: 260px;
    background: url('../image/Must-Try-Restaurants/background.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.must-try-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 48px 32px;
    box-sizing: border-box;
}

.must-try-hero-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.must-try-hero-icon {
    width: 54px;
    height: auto;
}

.must-try-hero-title {
    color: #f8a720;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.1;

}

.must-try-hero-right {
    max-width: 420px;
}

.must-try-hero-right p {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    text-align: right;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .must-try-section {
        flex-direction: column;
        max-width: 98vw;
    }

    .must-try-image img {
        width: 100%;
        height: 220px;
        border-radius: 20px 20px 0 0;
    }

    .must-try-info {
        border-left: none;
        border-top: 4px solid #F8A720;
        border-radius: 0 0 20px 20px;
        min-width: unset;
    }

    .restaurant-card {
        flex-direction: column;
    }

    .restaurant-img {
        flex: unset;
    }

    .restaurant-img img {
        border-radius: 18px 18px 0 0;
        height: 180px;
    }

    .restaurant-info {
        padding: 24px 18px 24px 18px;
    }

    .must-try-hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 16px;
        gap: 24px;
    }

    .must-try-hero-right {
        max-width: 100%;
        text-align: left;
    }

    .must-try-hero-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 0 24px 0;
    }

    .must-try-section {
        margin: 18px 0 24px 0;
        border-radius: 0;
        box-shadow: none;
    }

    .must-try-info {
        padding: 24px 12px;
        border-radius: 0 0 16px 16px;
    }

    .must-try-info h2 {
        font-size: 26px;
    }

    .must-try-thumb {
        width: 36px;
        height: 36px;
    }

    .restaurant-card {
        border-radius: 10px;
        box-shadow: none;
    }

    .restaurant-img img {
        height: 120px;
        border-radius: 10px 10px 0 0;
    }

    .restaurant-info {
        padding: 14px 8px 18px 8px;
    }

    .restaurant-title {
        font-size: 20px;
    }

    .see-more-btn {
        font-size: 14px;
        padding: 8px 18px;
    }
}

/* 其它可根据需要补充 */